home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / AutoFX.ifx.pre < prev    next >
Text File  |  1996-03-02  |  454b  |  30 lines

  1. /*
  2.  * AutoFX.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Called before AutoFX begins any processing.  May be used to turn off
  6.  * redraw or undo to speed things up a bit.
  7.  *
  8.  * Inputs:
  9.  *    None.
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. GetMain
  19. IF rc = 0 THEN DO
  20.    RequestResponse 'Buffer will be destroyed.  Continue?'
  21.    IF rc ~= 0 THEN EXIT rc
  22.    KillBuffer Force
  23.    Redraw
  24.    END
  25.  
  26. Redraw Off
  27. Undo Off
  28.  
  29. EXIT
  30.